<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>广西建设网</title>
    <style>
        body {
            padding: 0;
            margin: 0;
            font-family: "PingFang SC", Arial, sans-serif;
        }

        .bg {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-image: url('./img/tr_bg.png');
            background-size: cover;
            background-position: center;
        }

        .transfer {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 32px;
            color: rgba(0, 0, 0, 1);
            background-color: #fff;
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            text-align: center;
        }

        .link {
            color: #0180ff;
            text-decoration: none;
            transition: color 0.25s;
        }

        .link:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        .link-btn {
            margin: 20px 0;
            padding: 0 30px;
            height: 44px;
            line-height: 44px;
            font-size: 16px;
            color: #fff;
            background: #0180ff;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }

        .link-btn:hover {
            background: #0066cc;
        }

        .notice-text {
            font-size: 20px;
            font-weight: bold;
        }

        .address-text {
            font-size: 26px;
            font-weight: bold;
        }

        .highlight {
            color: red;
        }

    </style>
</head>
<body>
    <div class="bg">
        <div class="transfer">
            <img style="padding: 40px 0; -webkit-user-drag: none; width: 410px;" src="./img/skip.png" alt="迁移通知">
            
            <h2>广西建设网已迁移</h2>
            
            <p class="address-text">
                新地址：<a class="link" href="https://www.gxcic.cn/">https://www.gxcic.cn/</a>
            </p>
            
            <button class="link-btn" onclick="toNewWebSite()">点击跳转新地址</button>
            
            <p class="notice-text">
                <span class="highlight">温馨提示:请收藏本次更新后的新地址，便于您后续便捷访问。</span>
            </p>
        </div>
    </div>

    <script type="text/javascript">
        /**
         * 跳转至新版平台地址
         */
        function toNewWebSite() {
            window.location.href = 'https://www.gxcic.cn/';
        }
    </script>
</body>
</html>